home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / cserial.zip / VT100.H < prev   
C/C++ Source or Header  |  1990-04-04  |  839b  |  32 lines

  1. /*
  2.  *                               VT100.H
  3.  *
  4.  *                           Written for the
  5.  *
  6.  *                              Datalight
  7.  *                           Microsoft V 5.x
  8.  *                                TurboC
  9.  *                                  &
  10.  *                               Zortech
  11.  *
  12.  *                             C Compilers
  13.  *
  14.  *            Copyright (c) John Birchfield 1987, 1988, 1989
  15.  */
  16.  
  17. #if (!defined (SCREEN_ATTRIB))
  18. #    define SCR_ATTRIB    1
  19. #    define BLINK      0x80
  20. #    define BRIGHT        9
  21. #    define INVERSE    0x70
  22. #    define NORMAL         7
  23. #    define UNDERLINE     1
  24. /* #define UNDERLINE 0x71 */
  25. #endif
  26. #if (!defined (STANDALONE))
  27. extern char Duplex [2], RubOut [2],
  28.             BackSpace [2],
  29.             Cmask  [2], CrLf   [2];
  30. extern void vt100_driver (), VT100_init ();
  31. #endif
  32.